home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 1500
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4680
- LinkTopic = "Form1"
- ScaleHeight = 1500
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin ComctlLib.Toolbar Toolbar1
- Align = 1 'Align Top
- Height = 420
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 4680
- _ExtentX = 8255
- _ExtentY = 741
- Appearance = 1
- ImageList = "ImageList1"
- _Version = 327682
- BeginProperty Buttons {0713E452-850A-101B-AFC0-4210102A8DA7}
- NumButtons = 5
- BeginProperty Button1 {0713F354-850A-101B-AFC0-4210102A8DA7}
- Caption = ""
- Key = "New"
- Description = ""
- Object.ToolTipText = "Add New Record"
- Object.Tag = ""
- ImageIndex = 1
- EndProperty
- BeginProperty Button2 {0713F354-850A-101B-AFC0-4210102A8DA7}
- Caption = ""
- Key = "Save"
- Description = ""
- Object.ToolTipText = "Save Record"
- Object.Tag = ""
- ImageIndex = 2
- EndProperty
- BeginProperty Button3 {0713F354-850A-101B-AFC0-4210102A8DA7}
- Caption = ""
- Key = "Cancel"
- Description = ""
- Object.ToolTipText = "Cancel"
- Object.Tag = ""
- ImageIndex = 3
- EndProperty
- BeginProperty Button4 {0713F354-850A-101B-AFC0-4210102A8DA7}
- Caption = ""
- Key = "Edit"
- Description = ""
- Object.ToolTipText = "Edit Record"
- Object.Tag = ""
- ImageIndex = 4
- EndProperty
- BeginProperty Button5 {0713F354-850A-101B-AFC0-4210102A8DA7}
- Caption = ""
- Key = "Delete"
- Description = ""
- Object.ToolTipText = "Delete Record"
- Object.Tag = ""
- ImageIndex = 5
- EndProperty
- EndProperty
- End
- Begin ComctlLib.ImageList ImageList1
- Left = 120
- Top = 720
- _ExtentX = 1005
- _ExtentY = 1005
- BackColor = -2147483643
- ImageWidth = 16
- ImageHeight = 16
- MaskColor = 12632256
- _Version = 327682
- BeginProperty Images {0713E8C2-850A-101B-AFC0-4210102A8DA7}
- NumListImages = 5
- BeginProperty ListImage1 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
- Picture = "QuickExample4.frx":0000
- Key = ""
- EndProperty
- BeginProperty ListImage2 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
- Picture = "QuickExample4.frx":0114
- Key = ""
- EndProperty
- BeginProperty ListImage3 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
- Picture = "QuickExample4.frx":0228
- Key = ""
- EndProperty
- BeginProperty ListImage4 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
- Picture = "QuickExample4.frx":033C
- Key = ""
- EndProperty
- BeginProperty ListImage5 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
- Picture = "QuickExample4.frx":0450
- Key = ""
- EndProperty
- EndProperty
- End
- Begin VB.Label Label1
- Caption = "Label1"
- Height = 495
- Left = 1680
- TabIndex = 1
- Top = 720
- Width = 1215
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Toolbar1_ButtonClick(ByVal Button As ComctlLib.Button)
- Label1.Caption = Button.Key + " Clicked"
- End Sub
-